/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is Forte for Java, Community Edition. The Initial * Developer of the Original Code is Sun Microsystems, Inc. Portions * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.javadoc.comments; import org.openide.src.MemberElement; import org.openide.src.JavaDocTag; /** * * @author * @version */ public class EmptyTagPanel extends TagPanel { private static final String cardName = "CRD_EMPTY"; // NOI18N static final long serialVersionUID =7707027689326548947L; /** Initializes the Form */ public EmptyTagPanel( MemberElement element, JavaDocEditorPanel editorPanel ) { super( editorPanel ); initComponents (); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the FormEditor. */ private void initComponents () {//GEN-BEGIN:initComponents setLayout (new java.awt.GridBagLayout ()); java.awt.GridBagConstraints gridBagConstraints1; jLabel1 = new javax.swing.JLabel (); jLabel1.setText (org.openide.util.NbBundle.getBundle(EmptyTagPanel.class).getString("CTL_EmptyTagPanel.jLabel1.text")); gridBagConstraints1 = new java.awt.GridBagConstraints (); gridBagConstraints1.insets = new java.awt.Insets (2, 2, 2, 1); gridBagConstraints1.anchor = java.awt.GridBagConstraints.NORTHEAST; add (jLabel1, gridBagConstraints1); }//GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JLabel jLabel1; // End of variables declaration//GEN-END:variables void setData( JavaDocTag tag ) { } JavaDocTag getTag( String tagName ) { return null; } String getCardName() { return cardName; } void grabFirstFocus() {} } /* * Log * 6 Gandalf 1.5 1/12/00 Petr Hrebejk i18n * 5 Gandalf 1.4 11/27/99 Patrik Knakal * 4 Gandalf 1.3 10/23/99 Ian Formanek NO SEMANTIC CHANGE - Sun * Microsystems Copyright in File Comment * 3 Gandalf 1.2 9/16/99 Petr Hrebejk Tag descriptions editing * in HTML editor + localization * 2 Gandalf 1.1 8/13/99 Petr Hrebejk Window serialization * added & Tag change button in Jdoc editor removed * 1 Gandalf 1.0 7/9/99 Petr Hrebejk * $ */